home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ole2book.zip / CHAP11.ZIP / CHAP11 / POLYLINE / POLYLINE.RC < prev    next >
Text File  |  1993-06-14  |  3KB  |  112 lines

  1. /*
  2.  * POLYLINE.RC
  3.  * Polyline Object version 1.00 Chapter 11
  4.  *
  5.  * Resources for the Polyline object which now includes strings,
  6.  * icons, and a dialog template for the editing window.
  7.  *
  8.  * Copyright (c)1993 Microsoft Corporation, All Rights Reserved,
  9.  * as applied to redistribution of this source code in source form
  10.  * License is granted to use of compiled code in shipped binaries.
  11.  *
  12.  * Kraig Brockschmidt, Software Design Engineer
  13.  * Microsoft Systems Developer Relations
  14.  * One Microsoft Way
  15.  * Redmond, WA  98052
  16.  *
  17.  * Internet  :  kraigb@microsoft.com
  18.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  19.  */
  20.  
  21.  
  22. #include <windows.h>
  23. #include <ver.h>
  24. #include "resource.h"
  25.  
  26.  
  27. //CHAPTER11MOD
  28. //This is the default for iconic representations.
  29. IDR_ICON        ICON    polyline.ico
  30.  
  31.  
  32. //This dialog is used to edit the Polyline
  33. IDD_EDITDIALOG DIALOG 6, 18, 258, 152
  34. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  35. CAPTION "Polyline"
  36. FONT 8, "MS Sans Serif"
  37. BEGIN
  38.     CONTROL         "", ID_POLYLINERECT, "Static", SS_BLACKFRAME, 8, 12, 134, 132
  39.     PUSHBUTTON      "&Close", IDOK, 178, 6, 56, 14
  40.     PUSHBUTTON      "&Undo", ID_UNDO, 178, 24, 56, 14
  41.     PUSHBUTTON      "&Background...", ID_COLORBACK, 178, 54, 56, 14
  42.     PUSHBUTTON      "&Line...", ID_COLORLINE, 178, 72, 56, 14
  43.     GROUPBOX        "Colors", ID_UNDO, 158, 42, 94, 48
  44.     GROUPBOX        "Figure", ID_GROUPFIGURE, 2, 0, 146, 148
  45.     GROUPBOX        "Line Styles", ID_GROUPSTYLES, 158, 94, 94, 54
  46.     CONTROL         "&Solid", ID_LINESOLID, "Button",
  47.                     BS_AUTORADIOBUTTON | WS_GROUP, 166, 106, 32, 10
  48.     CONTROL         "&Dash", ID_LINEDASH, "Button", BS_AUTORADIOBUTTON, 216, 
  49.                     106, 32, 10
  50.     CONTROL         "Da&sh-Dot-Dot", ID_LINEDASHDOTDOT, "Button",
  51.                     BS_AUTORADIOBUTTON, 166, 134, 80, 10
  52.     CONTROL         "D&ot", ID_LINEDOT, "Button", BS_AUTORADIOBUTTON, 216,
  53.                     120, 32, 10
  54.     CONTROL         "D&ash-Dot", ID_LINEDASHDOT, "Button", 
  55.                     BS_AUTORADIOBUTTON, 166, 120, 48, 10
  56. END
  57.  
  58.  
  59. STRINGTABLE
  60.     BEGIN
  61.      IDS_STORAGEFORMAT,      "Polyline Figure"
  62.      IDS_USERTYPE,           "Polyline Figure"
  63.      IDS_CLOSECAPTION,       "Polyline"
  64.      IDS_CLOSEPROMPT,        "Object has changed.  Do you wish to update it?"
  65.     END
  66.  
  67.  
  68. //End CHAPTER11MOD
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75. //Default is nodebug
  76. #ifndef DEBUG
  77. #define VER_DEBUG                   0
  78. #else
  79. #define VER_DEBUG                   VS_FF_DEBUG
  80. #endif
  81.  
  82. VS_VERSION_INFO VERSIONINFO 
  83.  FILEVERSION        1,0,0,0
  84.  PRODUCTVERSION     1,0,0,0
  85.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  86.  FILEFLAGS          VER_DEBUG
  87.  FILEOS             VOS_DOS_WINDOWS16
  88.  FILETYPE           VFT_DLL
  89.  FILESUBTYPE        VFT_UNKNOWN
  90.  
  91.  BEGIN
  92.    BLOCK "StringFileInfo"
  93.     BEGIN
  94.      BLOCK "040904E4"
  95.       BEGIN
  96.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  97.        VALUE "FileDescription", "Polyline Object 1.0", "\0"
  98.        VALUE "FileVersion",     "1.00\0", "\0"
  99.        VALUE "InternalName",    "POLYLINE.DLL", "\0"
  100.        VALUE "LegalCopyright",  "Copyright \251 1993 Microsoft Corp.", "\0"
  101.        VALUE "OriginalFilename","POLYLINE.DLL", "\0"
  102.        VALUE "ProductName",     "Polyline Object 1.0", "\0"
  103.        VALUE "ProductVersion",  "1.00\0"
  104.       END
  105.    END
  106.  
  107.    BLOCK "VarFileInfo"
  108.     BEGIN 
  109.      VALUE "Translation", 0x0409, 0x04E4
  110.     END 
  111.  END
  112.